home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / asp_mdms.zip / ATI.ASP < prev    next >
Text File  |  1989-08-01  |  4KB  |  82 lines

  1. ;*************************************************************************
  2. ;* ATI.ASP (C) 1988 DATASTORM TECHNOLOGIES, INC.                         *
  3. ;*                                                                       *
  4. ;* An ASPECT script file for initializing the ATI 2400etc internal modem *
  5. ;* for proper use with PROCOMM PLUS.                                     *
  6. ;*                                                                       *
  7. ;*************************************************************************
  8. CLEAR
  9. CUROFF
  10. BOX 0 0 9 58 14
  11. ATSAY 2 2 14 "PROCOMM PLUS is designed to work efficiently with the"
  12. ATSAY 3 2 14 "ATI 2400etc modem in all its operational modes, but"
  13. ATSAY 4 2 14 "the initial setup differs from the setup for ordinary"
  14. ATSAY 5 2 14 "non-error-correcting modems."
  15. ATSAY 7 2 14 "                 <press ENTER to continue>"
  16. WAIT1:
  17. IF NOT HITKEY
  18.    GOTO WAIT1
  19. ENDIF
  20. CLEAR
  21. BOX 0 0 17 59 14
  22. ATSAY 2 2 14 "The basic principle is that the computer-to-modem baud-"
  23. ATSAY 3 2 14 "rate is fixed at 9600 (thus your status line will"
  24. ATSAY 4 2 14 "*always* read 9600) and the modem itself adjusts to"
  25. ATSAY 5 2 14 "the actual speed of the connection."
  26. ATSAY 7 2 14 "This ASPECT file sends to the modem all the commands"
  27. ATSAY 8 2 14 "necessary for efficient automatic use of its error-"
  28. ATSAY 9 2 14 "correcting features. You only need to run it one time,"
  29. ATSAY 10 2 14 "since it tells the modem to write these settings to"
  30. ATSAY 11 2 14 "non-volatile RAM. It is also very important to follow"
  31. ATSAY 12 2 14 "*exactly* the instructions that appear on the screen"
  32. ATSAY 13 2 14 "as you run this file."
  33. ATSAY 15 2 14 "                 <press ENTER to continue>"
  34. WAIT2:
  35. IF NOT HITKEY
  36.    GOTO WAIT2
  37. ENDIF
  38. CLEAR
  39. SOUND 440 50
  40. BOX 0 0 4 50 14
  41. ATSAY 2 2 14 "ATI 2400etc modem initialization... WORKING..."
  42. SET BAUDRATE 9600                         ;Set up comm line
  43. SET PARITY NONE
  44. SET DATABITS 8
  45. SET STOPBITS 1
  46. SET DISPLAY OFF
  47. SET TXPACE 50
  48. TRANSMIT "AT^M"                           ;Get modem's attention
  49. PAUSE 2
  50. TRANSMIT "ATZ^M"                          ;Resets non-volatile mem
  51. PAUSE 1
  52. TRANSMIT "AT&F^M"                         ;Get factory defaults
  53. TRANSMIT "AT&C1&D2^M"                     ;Set CD and DTR to follow actual line state
  54. TRANSMIT "AT&B1^M"                        ;DTE speed equals speed of last command
  55.                                           ; or power-up default baud rate
  56. TRANSMIT "AT&K3^M"                        ;Enable RTS/CTS handshaking
  57. TRANSMIT "AT&Q5^M"                        ;MNP mode
  58. TRANSMIT "AT S7=60^M"                     ;Set wait for CD to 60 seconds
  59. TRANSMIT "AT S11=55^M"                    ;Speed up the dialing
  60. TRANSMIT "AT&W0^M"                        ;Write settings to NRAM Profile 0
  61. TRANSMIT "AT&Y0^M"                        ;Make sure Profile 0 is default
  62. SET TXPACE 0
  63. CLEAR
  64. SET DISPLAY ON
  65. SOUND 440 50
  66. BOX 0 0 16 58 14
  67. ATSAY 2 2 14 "ATI 2400etc modem initialization - COMPLETED!"
  68. ATSAY 4 2 14 "Your ATI modem will now power up with the proper"
  69. ATSAY 5 2 14 "defaults for PROCOMM PLUS.  You should now use the"
  70. ATSAY 6 2 14 "Setup Facility (Alt-S) MODEM OPTIONS to make your"
  71. ATSAY 7 2 14 "INITIALIZATION COMMAND `"ATZ^M`" (without the quotes)."
  72. ATSAY 8 2 14 "In addition AUTOBAUD DETECT should be set to OFF and"
  73. ATSAY 9 2 14 "in TERMINAL OPTIONS Hardware Flow Control (RTS/CTS)"
  74. ATSAY 10 2 14 "should be turned ON. All dialing directory entries"
  75. ATSAY 11 2 14 "should be should be set to 9600 baud, as well as your"
  76. ATSAY 12 2 14 "Alt-P line setting. Make sure to save your changes."
  77. ATSAY 13 2 14 "One last thing: your CONNECT MESSAGES in MODEM OPTIONS"
  78. ATSAY 14 2 14 "should all read simply `"CONNECT`" (without quotes)."
  79. CURON
  80. LOCATE 17 0
  81.  
  82.